Get Status
The Get Status API is used to get the status of a particular transaction using the End To End ID.
Method: POST
{{URL}}/rpc/VisaDirectService/GetStatus
Example
Request Parameters
| Parameter | Description |
|---|---|
| endToEndID Mandatory | String Transaction Reference number that is used for End to End tracing of a transaction. |
Body
{
"endToEndID": "000115"
}
Response: 200
Response Parameters
| Parameter | Description |
|---|---|
| endToEndId | String Transaction Reference number that is used for End to End tracing of a transaction. |
| status | String Status of the transaction. Sample Value:'SUCCESS' |
| ledgerStatus | String Status of the transaction in the ledger. Sample Value:'POSTED' |
| updatedAt | String Timestamp indicating when the transaction was last updated (ISO 8601 format). |
| referenceNumber | String Unique reference number generated for the transaction. |
| transactionType | String Type of transaction. Sample Value:'AFT' |
{
"endToEndId": "000115",
"status": "SUCCESS",
"ledgerStatus": "POSTED",
"updatedAt": "2025-12-03T07:31:31Z",
"referenceNumber": "449833b22839485fac620f97a6773333",
"transactionType": "AFT"
}